home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue36 / Clinic / Lottery2.dpr < prev    next >
Encoding:
Text File  |  1998-04-14  |  235 b   |  16 lines

  1. program Lottery2;
  2.  
  3. uses
  4.   Forms,
  5.   LottryU2 in 'LOTTRYU2.PAS' {frmLottery};
  6.  
  7. {$R *.RES}
  8.  
  9. begin
  10. {$ifdef Win32}
  11.   Application.Initialize;
  12. {$endif}
  13.   Application.CreateForm(TfrmLottery, frmLottery);
  14.   Application.Run;
  15. end.
  16.